func go/types.allNumeric

7 uses

	go/types (current package)
		expr.go#L67: 		token.ADD: allNumeric,
		expr.go#L68: 		token.SUB: allNumeric,
		expr.go#L1045: 		token.SUB: allNumeric,
		expr.go#L1046: 		token.MUL: allNumeric,
		expr.go#L1047: 		token.QUO: allNumeric,
		predicates.go#L42: func allNumeric(typ Type) bool         { return allBasic(typ, IsNumeric) }
		stmt.go#L454: 		if !allNumeric(x.typ) {